Open a Form as Popup window
Question
You can find this question from this link 👉 Open a popup window from inside Record A and stay on the record after saving Record B
Answer
You can find the solution to the question from the video below
First we need a Workflow to open a popup
The Parameters for the Workflow are given below

The Code Snippet is as follows
if(Add_Customer)
{
openUrl("#Form:Client","popup window","height=400px,width=500px");
input.Add_Customer = !input.Add_Customer;
}
Next we need a Workflow to close the popup after saving the entry

The Code Snippet is as follows
openUrl("#Script:dialog.close","popup window");




